Avoid unreachable code
authorMatthias Clasen <mclasen@redhat.com>
Fri, 30 Nov 2012 04:08:24 +0000 (23:08 -0500)
committerMatthias Clasen <mclasen@redhat.com>
Fri, 30 Nov 2012 04:10:40 +0000 (23:10 -0500)
Reestablish an else that went missing in commit 5ff328d2. Without
it, the return is reached unconditionally, and the code behind
it is dead.

gtk/a11y/gtkwidgetaccessible.c

index 9e8add71cd218f0b6383d8fce24eb68112ba95fd..52d70391d8e13c5cf77e37376e80c953937f4a90 100644 (file)
@@ -499,6 +499,7 @@ gtk_widget_accessible_notify_gtk (GObject    *obj,
       gtk_widget_accessible_update_tooltip (GTK_WIDGET_ACCESSIBLE (atk_obj),
                                             widget);
     }
+  else
     return;
 
   atk_object_notify_state_change (atk_obj, state, value);